date_is_today(date);
参数 | 描述 |
---|---|
date | 要使用的日期时间。 |
返回: 布尔值
此功能将返回真正如果给定的日期时间值是正在检查的日期(即:今天),如果不是将返回假。这对于游戏中的复活节彩蛋或解锁季节性内容等功能来说非常方便。请注意此函数将会被时区影响(默认是本地时间),你可以用 date_set_timezone() 来改变这个函数。
if date_is_today(global.Halloween)
{
global.Max_Levels = 200;
}
The above code will check the datetime stored in the global variable "Halloween" to see if it is today, and if it is it sets another global variable to a new value.